home *** CD-ROM | disk | FTP | other *** search
/ Chip 1997 October / CD CHIP.ISO / WebServ / folkweb / MAINFRM.H_ < prev    next >
Encoding:
Text File  |  1995-08-25  |  998 b   |  42 lines

  1. // mainfrm.h : interface of the CMainFrame class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4.  
  5. class CMainFrame : public CFrameWnd
  6. {
  7. protected: // create from serialization only
  8.     DECLARE_DYNCREATE(CMainFrame)
  9.  
  10. // Attributes
  11. public:
  12.     CMainFrame();
  13.  
  14. // Operations
  15. public:
  16.  
  17. // Overrides
  18.     // ClassWizard generated virtual function overrides
  19.     //{{AFX_VIRTUAL(CMainFrame)
  20.     public:
  21.     virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  22.     //}}AFX_VIRTUAL
  23.  
  24. // Implementation
  25. public:
  26.     virtual ~CMainFrame();
  27. #ifdef _DEBUG
  28.     virtual void AssertValid() const;
  29.     virtual void Dump(CDumpContext& dc) const;
  30. #endif
  31.  
  32. // Generated message map functions
  33. protected:
  34.     //{{AFX_MSG(CMainFrame)
  35.         // NOTE - the ClassWizard will add and remove member functions here.
  36.         //    DO NOT EDIT what you see in these blocks of generated code!
  37.     //}}AFX_MSG
  38.     DECLARE_MESSAGE_MAP()
  39. };
  40.  
  41. /////////////////////////////////////////////////////////////////////////////
  42.